home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-09-04 | 842 b | 31 lines |
- #
- #
- # Copyright (C) 1991 Texas Instruments Incorporated.
- #
- # Permission is granted to any individual or institution to use, copy, modify,
- # and distribute this software, provided that this complete copyright and
- # permission notice is maintained, intact, in all copies and supporting
- # documentation.
- #
- # Texas Instruments Incorporated provides this software "as is" without
- # express or implied warranty.
- #
-
- DOCS = cool-core.ms cool-exception-handling.ms cool-library-experiences.ms \
- cool-parameterized-types.ms cool-runtime-type-checking.ms \
- cool-symbols-and-packages.ms pisces.ms
- PRINTS = $(DOCS:.ms=.ps.Z)
-
- .SUFFIXES: .ms .ps.Z
-
- .ms.ps.Z:
- troff -t -ms $*.ms | thack > $*.ps ; compress $*.ps
-
- print: $(PRINTS)
- @for i in $(PRINTS); do \
- echo "uncompress -c $$i | qpr"; \
- uncompress -c $$i | qpr; \
- done
-
- $(PRINTS): $(DOCS)
-